--Front or rear-triggered sensor
--Tests if the sensor with the number i is a front- or a rear-triggered.
--Front or rear-triggered sensor
--Tests if the sensor with the number i is a front- or a rear-triggered
(i:integer) -- i=number of the sensor
is
	front: boolean;
do
	if track.sensorNr(i).front then
		front := true;
	else
		front := false;
	end;
end;
/*track:Enter the name of your track object here.
*/